home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / ExternalShell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-29  |  1.7 KB  |  57 lines

  1. /* External shell widget external header file.
  2.    Copyright (C) 1993, 1994 Sun Microsystems, Inc.
  3.  
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public
  6. License as published by the Free Software Foundation; either
  7. version 2 of the License, or (at your option) any later version.
  8.  
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with this library; if not, write to the Free
  16. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  17.  
  18. /* Synched up with: Not in FSF. */
  19.  
  20. /* Written by Ben Wing, September 1993. */
  21.  
  22. #ifndef _ExternalShell_h
  23. #define _ExternalShell_h
  24.  
  25. #ifndef XtNwindow
  26. #define XtNwindow "window"
  27. #endif
  28. #ifndef XtCWindow
  29. #define XtCWindow "Window"
  30. #endif
  31.  
  32. #ifndef XtNclientTimeout
  33. #define XtNclientTimeout "clientTimeout"
  34. #endif
  35. #ifndef XtCClientTimeout
  36. #define XtCClientTimeout "ClientTimeout"
  37. #endif
  38.  
  39. #ifndef XtNdeadClient
  40. #define XtNdeadClient "deadClient"
  41. #endif
  42. #ifndef XtCDeadClient
  43. #define XtCDeadClient "DeadClient"
  44. #endif
  45.  
  46. typedef struct _ExternalShellClassRec *ExternalShellWidgetClass;
  47. typedef struct _ExternalShellRec *ExternalShellWidget;
  48. extern WidgetClass externalShellWidgetClass;
  49.  
  50. Bool ExternalShellReady(Widget w, Window win, long event_mask);
  51. void ExternalShellSetFocus(Widget w);
  52. void ExternalShellUnrealize(Widget w);
  53.  
  54. #define is_external_shell(w) (XtClass (w) == externalShellWidgetClass)
  55.  
  56. #endif /* _ExternalShell_h */
  57.